Call
Calls the specified Document Builder method. See the Text document API, Spreadsheet API, Presentation API or Form API sections for more information which methods are available for various document types.
Please note, that for the
.docbuilder
file theCDocBuilderValue.Call
method is not used explicitly. The method itself is used instead. See the example below.
Syntax
CDocBuilderValue Call(const wchar_t* | const char* sName, CDocBuilderValue p1, CDocBuilderValue p2, CDocBuilderValue p3, CDocBuilderValue p4, CDocBuilderValue p5, CDocBuilderValue p6);
Parameters
Name | Data type | Description |
---|---|---|
sName | const wchar_t* | const char* | The name of the Document Builder method in the Unicode or UTF8 format. |
p1-p6 | CDocBuilderValue | The parameters that the Document Builder method takes as arguments. |
Example
C++
std::wstring sWorkDirectory = NSUtils::GetBuilderDirectory();
CDocBuilder::Initialize(sWorkDirectory.c_str());
CDocBuilder oBuilder;
CContext oContext = oBuilder.GetContext();
CValue oGlobal = oContext.GetGlobal();
CValue oApi = oGlobal["Api"];
CValue oDocument = oApi.Call("GetDocument");
CDocBuilder::Dispose();
.docbuilder
const oDocument = Api.GetDocument()